home *** CD-ROM | disk | FTP | other *** search
/ PC Answers 1995 May / PC Answers CD-ROM 7 (Future Publishing) (May 1995).iso / vbits / code / appleman / abortfor.frm (.txt) next >
Encoding:
Visual Basic Form  |  1994-10-06  |  785 b   |  28 lines

  1. VERSION 2.00
  2. Begin Form AbortForm 
  3.    Caption         =   "Abort Printing"
  4.    ClientHeight    =   1695
  5.    ClientLeft      =   2235
  6.    ClientTop       =   2340
  7.    ClientWidth     =   3795
  8.    Height          =   2100
  9.    Left            =   2175
  10.    LinkMode        =   1  'Source
  11.    LinkTopic       =   "Form1"
  12.    ScaleHeight     =   1695
  13.    ScaleWidth      =   3795
  14.    Top             =   1995
  15.    Visible         =   0   'False
  16.    Width           =   3915
  17.    Begin CommandButton CmdAbort 
  18.       Caption         =   "Press to Abort Print Job"
  19.       Height          =   495
  20.       Left            =   600
  21.       TabIndex        =   0
  22.       Top             =   480
  23.       Width           =   2535
  24.    End
  25. Sub CmdAbort_Click ()
  26.     AbortPrinting = -1
  27. End Sub
  28.